ExitMouseCallback

public interface ExitMouseCallback implements BrowserSyncCallback<P, R>

This callback is invoked when a MouseExited event is about to be processed by the browser.

Return the proceed response to allow the browser to process the event.

Return the suppress response to suppress the event.

Important: the engine will be blocked until you return a response from the callback.

Types

Link copied to clipboard
public interface Params
The parameters of the ExitMouseCallback.
Link copied to clipboard
public interface Response
A response of the ExitMouseCallback.

Functions

Link copied to clipboard
@CheckForNull()
public abstract R on(P params)
Invoked when the callback needs a response of type R that may be determined based on the provided callback parameters.